home *** CD-ROM | disk | FTP | other *** search
- from JascApp import *
-
- def ScriptProperties():
- return {
- 'Author': u'Jasc Software, Inc.',
- 'Copyright': u'Copyright (c) 2003-2004 Jasc Software, Inc. All rights reserved.',
- 'Description': '',
- 'Host': 'Paint Shop Pro',
- 'Host Version': '8.00'
- }
-
- def Preset_Crop():
- return {
- 'CropRect': ((0,0),1500,1050),
- 'Mode': App.Constants.CropMode.CustomPrint,
- 'Units': App.Constants.CropUnits.Inches,
- 'PrintWidth': 5,
- 'PrintHeight': 3.5
- }
-
- def Do(Environment):
- App.Do( Environment, 'Crop', Preset_Crop())
-
-